home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Skunkware 5
/
Skunkware 5.iso
/
src
/
X11
/
tclMotif-1.4
/
send
/
programs
/
tkSend3
< prev
next >
Wrap
Text File
|
1995-06-29
|
295b
|
16 lines
#!/pub/local/bin/wish -f
button .button -command incrementLabel -text 1
pack .button -side left
proc incrementLabel {} {
set text [.button configure -text]
set value [lindex $text 4]
incr value
.button configure -text $value
if {$value < 20} {
send xmSend3 incrementLabel
}
}